Hi,
I'm working on asp.net, and i try to open a popup windows into screen middle. what i do?
How to open popup window into screen center?
3475
01-Nov-2012
Updated on 01-Nov-2012
AVADHESH PATEL
01-Nov-2012use the JavaScript to open popup window in center.
function popup(pageURL, title, popupWidth, popupHeight) { var left = (screen.width / 2) - (popupWidth / 2); var top = (screen.height / 2) - (popupHeight / 2); var targetPop = window.open(pageURL, title, 'toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=YES, resizable=YES, copyhistory=no, width=' + popupWidth + ', height=' + popupHeight + ', top=' + top + ', left=' + left); }